3dcad1949007d28130ce68fa55920b67627c6200,src/main/java/com/flightstats/hub/channel/TagLatestResource.java,TagLatestResource,getLatestCount,#String#number#boolean#boolean#boolean#boolean#String#UriInfo#,52
Before Change
.tagName(tag)
.startKey(latest.get().getContentKey())
.next(false)
.stable(stable)
.count(count - 1)
.build();
SortedSet<ChannelContentKey> keys = tagService.getKeys(query);
keys.add(latest.get());
After Change
.tagName(tag)
.startKey(latest.get().getContentKey())
.next(false)
.stable(stable)
.location(Location.valueOf(location))
.epoch(Epoch.valueOf(epoch))
.count(count - 1)
.build();
SortedSet<ChannelContentKey> keys = tagService.getKeys(query);
keys.add(latest.get());